const go/token.FUNC

15 uses

	go/token (current package)
		token.go#L109: 	FUNC
		token.go#L215: 	FUNC:   "func",

	go/parser
		parser.go#L817: 		case token.IDENT, token.MUL, token.ARROW, token.FUNC, token.CHAN, token.MAP, token.STRUCT, token.INTERFACE, token.LPAREN:
		parser.go#L850: 	case token.MUL, token.ARROW, token.FUNC, token.LBRACK, token.CHAN, token.MAP, token.STRUCT, token.INTERFACE, token.LPAREN:
		parser.go#L1102: 	pos := p.expect(token.FUNC)
		parser.go#L1374: 	case token.FUNC:
		parser.go#L1480: 	case token.FUNC:
		parser.go#L2435: 		token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands
		parser.go#L2770: 	pos := p.expect(token.FUNC)
		parser.go#L2836: 	case token.FUNC:

	go/printer
		nodes.go#L875: 		p.print(token.FUNC)
		nodes.go#L1055: 		p.print(token.FUNC)
		nodes.go#L1923: 	p.print(token.FUNC, blank)
		nodes.go#L1960: 		tok = token.FUNC
		nodes.go#L1986: 			p.linebreak(p.lineFor(d.Pos()), min, ignore, tok == token.FUNC && p.numLines(d) > 1)